home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Mac Game Programming Gurus / TricksOfTheMacGameProgrammingGurus.iso / More Source / C⁄C++ / Xconq 7.0d37 / source / config.sub < prev    next >
Text File  |  1994-04-24  |  19KB  |  939 lines

  1. #!/bin/sh
  2. # Configuration validation subroutine script, version 1.1.
  3. #   Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
  4. # This file is (in principle) common to ALL GNU software.
  5. # The presence of a machine in this file suggests that SOME GNU software
  6. # can handle that machine.  It does not imply ALL GNU software can. 
  7.  
  8. #This file is free software; you can redistribute it and/or modify
  9. #it under the terms of the GNU General Public License as published by
  10. #the Free Software Foundation; either version 2 of the License, or
  11. #(at your option) any later version.
  12.  
  13. #This program is distributed in the hope that it will be useful,
  14. #but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. #GNU General Public License for more details.
  17.  
  18. #You should have received a copy of the GNU General Public License
  19. #along with this program; if not, write to the Free Software
  20. #Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22.  
  23. # Configuration subroutine to validate and canonicalize a configuration type.
  24. # Supply the specified configuration type as an argument.
  25. # If it is invalid, we print an error message on stderr and exit with code 1.
  26. # Otherwise, we print the canonical config type on stdout and succeed.
  27.  
  28. # This file is supposed to be the same for all GNU packages
  29. # and recognize all the CPU types, system types and aliases
  30. # that are meaningful with *any* GNU software.
  31. # Each package is responsible for reporting which valid configurations
  32. # it does not support.  The user should be able to distinguish
  33. # a failure to support a valid configuration from a meaningless
  34. # configuration.
  35.  
  36. # The goal of this file is to map all the various variations of a given
  37. # machine specification into a single specification in the form:
  38. #    CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
  39. # It is wrong to echo any other type of specification.
  40.  
  41. if [ x$1 = x ]
  42. then
  43.     echo Configuration name missing. 1>&2
  44.     echo "Usage: $0 CPU-MFR-OPSYS" 1>&2
  45.     echo "or     $0 ALIAS" 1>&2
  46.     echo where ALIAS is a recognized configuration type. 1>&2
  47.     exit 1
  48. fi
  49.  
  50. # First pass through any local machine types.
  51. case $1 in
  52.     *local*)
  53.         echo $1
  54.         exit 0
  55.         ;;
  56.     *)
  57.     ;;
  58. esac
  59.  
  60. # Separate what the user gave into CPU-COMPANY and OS (if any).
  61. basic_machine=`echo $1 | sed 's/-[^-]*$//'`
  62. if [ $basic_machine != $1 ]
  63. then os=`echo $1 | sed 's/.*-/-/'`
  64. else os=; fi
  65.  
  66. ### Let's recognize common machines as not being operating systems so
  67. ### that things like config.sub decstation-3100 work.  We also
  68. ### recognize some manufacturers as not being operating systems, so we
  69. ### can provide default operating systems below.
  70. case $os in
  71.     -sun*os*)
  72.         # Prevent following clause from handling this invalid input.
  73.         ;;
  74.     -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \
  75.     -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \
  76.     -unicom* | -ibm* | -next* | -hp | -isi* | -apollo | -altos* | \
  77.     -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\
  78.     -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \
  79.     -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \
  80.     -sim | -cisco)                        # CYGNUS LOCAL
  81.         os=
  82.         basic_machine=$1
  83.         ;;
  84.     -scout)                        # CYGNUS LOCAL
  85.         ;;
  86.     -wrs)                        # CYGNUS LOCAL
  87.         os=vxworks
  88.         basic_machine=$1
  89.         ;;
  90.     -unixware)                    # CYGNUS LOCAL
  91.         os=-sysv4
  92.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  93.         ;;
  94.     -hiux*)
  95.         os=-hiuxwe2
  96.         ;;
  97.     -sco4)
  98.         os=-sco3.2v4
  99.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  100.         ;;
  101.     -sco3.2.[4-9]*)
  102.         os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
  103.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  104.         ;;
  105.     -sco3.2v[4-9]*)
  106.         # Don't forget version if it is 3.2v4 or newer.
  107.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  108.         ;;
  109.     -sco*)
  110.         os=-sco3.2v2
  111.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  112.         ;;
  113.     -isc)
  114.         os=-isc2.2
  115.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  116.         ;;
  117.     -clix*)
  118.         basic_machine=clipper-intergraph
  119.         ;;
  120.     -isc*)
  121.         basic_machine=`echo $1 | sed -e 's/86-.*/86-unknown/'`
  122.         ;;
  123.     -lynx)
  124.         os=-lynxos
  125.         ;;
  126.     -os9k)
  127.         os=-os9k
  128.         ;;
  129.     -os9)
  130.         os=-os9
  131.         ;;
  132. esac
  133.  
  134. # Decode aliases for certain CPU-COMPANY combinations.
  135. case $basic_machine in
  136.     # Recognize the basic CPU types without company name.
  137.     # Some are omitted here because they have special meanings below.
  138.     tahoe | i[34]86 | i860 | m68k | m68000 | m88k | ns32k | arm | pyramid \
  139.         | tron | a29k | 580 | i960 | hppa1.0 | hppa1.1 \
  140.         | alpha | we32k | ns16k | clipper | sparclite | i370 \
  141.         | powerpc \
  142.         | h8300 | h8300h | sh \
  143.         | m88110 | sparc | m680[01234]0 | m683?2 | z8k | v70 \
  144.         | h8500 | mips64 | mipsel | mips64el) # CYGNUS LOCAL
  145.         basic_machine=$basic_machine-unknown
  146.         ;;
  147.     # Object if more than one company name word.
  148.     *-*-*)
  149.         echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
  150.         exit 1
  151.         ;;
  152.     # Recognize the basic CPU types with company name.
  153.     vax-* | tahoe-* | i[34]86-* | i860-* | m68k-* | m68000-* | m88k-* \
  154.           | sparc-* | ns32k-* | fx80-* | arm-* | c[123]* \
  155.           | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \
  156.           | none-* | 580-* | cray2-* | i960-* | xmp-* | ymp-* \
  157.           | hppa1.0-* | hppa1.1-* | alpha-* | we32k-* | cydra-* | ns16k-* \
  158.           | pn-* | np1-* | xps100-* | clipper-* | orion-* | sparclite-* \
  159.           | powerpc \
  160.           | h8300-* | h8300h-* | sh-* \
  161.           | m88110-* | m680[01234]0-* | m683?2-* | z8k-* | h8500-* \
  162.           | mips64-* | mipsel-* | mips64el-*) # CYGNUS LOCAL
  163.         ;;
  164.     # Recognize the various machine names and aliases which stand
  165.     # for a CPU type and a company and sometimes even an OS.
  166.  
  167.     mips3-*)                    # CYGNUS LOCAL
  168.         basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
  169.         ;;
  170.     mips3)                        # CYGNUS LOCAL
  171.         basic_machine=mips64-unknown
  172.         ;;
  173.     dpx20 | dpx20-*)                # CYGNUS LOCAL
  174.         basic_machine=rs6000-bull
  175.         os=-bosx
  176.         ;;
  177.     unixware)                    # CYGNUS LOCAL
  178.         os=-sysv4
  179.         basic_machine=i386-unknown
  180.         ;;
  181.     vaxv)
  182.         basic_machine=vax-dec
  183.         os=-sysv
  184.         ;;
  185.     vms)
  186.         basic_machine=vax-dec
  187.         os=-vms
  188.         ;;
  189.     i370-ibm* | ibm*)
  190.         basic_machine=i370-ibm
  191.         os=-mvs
  192.         ;;
  193.     i386mach)                    # CYGNUS LOCAL
  194.         basic_machine=i386-mach
  195.         os=-mach
  196.         ;;
  197.     i[34]86v32)
  198.         basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
  199.         os=-sysv32
  200.         ;;
  201.     i[34]86v4*)
  202.         basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
  203.         os=-sysv4
  204.         ;;
  205.     i[34]86v)
  206.         basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
  207.         os=-sysv
  208.         ;;
  209.     i[34]86sol2)
  210.         basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
  211.         os=-solaris2
  212.         ;;
  213.     vsta | i386-vsta)                # CYGNUS LOCAL
  214.         basic_machine=i386-unknown
  215.         os=-vsta
  216.         ;;
  217.     go32 | i386-go32)                # CYGNUS LOCAL
  218.         basic_machine=i386-unknown
  219.         os=-go32
  220.         ;;
  221.     i386-linux* | linux)                # CYGNUS LOCAL
  222.         basic_machine=i386-unknown
  223.         os=-linux
  224.         ;;
  225.     i386-linux*coff | linuxcoff)            # CYGNUS LOCAL
  226.         basic_machine=i386-unknown
  227.         os=-linuxcoff
  228.         ;;
  229.     i386-linux*elf | linuxelf)            # CYGNUS LOCAL
  230.         basic_machine=i386-unknown
  231.         os=-linuxelf
  232.         ;;
  233.     386bsd)                        # CYGNUS LOCAL
  234.         basic_machine=i386-unknown
  235.         os=-bsd
  236.         ;;
  237.     netbsd386)
  238.         basic_machine=i386-unknown        # CYGNUS LOCAL
  239.         os=-netbsd
  240.         ;;
  241.     spur)
  242.         basic_machine=spur-unknown
  243.         ;;
  244.     paragon)
  245.         basic_machine=i860-intel
  246.         os=-osf
  247.         ;;
  248.     alliant | fx80)
  249.         basic_machine=fx80-alliant
  250.         ;;
  251.     convex-c1)
  252.         basic_machine=c1-convex
  253.         os=-bsd
  254.         ;;
  255.     convex-c2)
  256.         basic_machine=c2-convex
  257.         os=-bsd
  258.         ;;
  259.     convex-c32)
  260.         basic_machine=c32-convex
  261.         os=-bsd
  262.         ;;
  263.     convex-c34)
  264.         basic_machine=c34-convex
  265.         os=-bsd
  266.         ;;
  267.     convex-c38)
  268.         basic_machine=c38-convex
  269.         os=-bsd
  270.         ;;
  271.     m88k-omron*)
  272.         basic_machine=m88k-omron
  273.         ;;
  274.     merlin)
  275.         basic_machine=ns32k-utek
  276.         os=-sysv
  277.         ;;
  278.     crds | unos)
  279.         basic_machine=m68k-crds
  280.         ;;
  281.     elxsi)
  282.         basic_machine=elxsi-elxsi
  283.         os=-bsd
  284.         ;;
  285.     encore | umax | mmax)
  286.         basic_machine=ns32k-encore
  287.         ;;
  288.     genix)
  289.         basic_machine=ns32k-ns
  290.         ;;
  291.     iris | iris4d | \
  292.     iris3 | iris4)                    # CYGNUS LOCAL
  293.         basic_machine=mips-sgi
  294.         case $os in
  295.             -irix*)
  296.             ;;
  297.             *)
  298.             os=-irix4
  299.             ;;
  300.         esac
  301.         ;;
  302.     news | news700 | news800 | news900)
  303.         basic_machine=m68k-sony
  304.         os=-newsos
  305.         ;;
  306.     3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc)
  307.         basic_machine=m68000-att
  308.         ;;
  309.     3b*)
  310.         basic_machine=we32k-att
  311.         ;;
  312.     delta | 3300 | motorola-3300 | motorola-delta \
  313.           | 3300-motorola | delta-motorola)
  314.         basic_machine=m68k-motorola
  315.         ;;
  316.     balance)
  317.         basic_machine=ns32k-sequent
  318.         os=-dynix
  319.         ;;
  320.         pc532)
  321.         basic_machine=ns32k-pc532
  322.         ;;
  323.     symmetry)
  324.         basic_machine=i386-sequent
  325.         os=-dynix
  326.         ;;
  327.     sun2)
  328.         basic_machine=m68000-sun
  329.         ;;
  330.     sun2os3)
  331.         basic_machine=m68000-sun
  332.         os=-sunos3
  333.         ;;
  334.     sun2os4)
  335.         basic_machine=m68000-sun
  336.         os=-sunos4
  337.         ;;
  338.     sun3os3)
  339.         basic_machine=m68k-sun
  340.         os=-sunos3
  341.         ;;
  342.     sun3os4)
  343.         basic_machine=m68k-sun
  344.         os=-sunos4
  345.         ;;
  346.     sun4os3)
  347.         basic_machine=sparc-sun
  348.         os=-sunos3
  349.         ;;
  350.     sun4os4)
  351.         basic_machine=sparc-sun
  352.         os=-sunos4
  353.         ;;
  354.     sun4sol2)                    # CYGNUS LOCAL
  355.         basic_machine=sparc-sun
  356.         os=-solaris2
  357.         ;;
  358.     z8ksim)                        # CYGNUS LOCAL
  359.         basic_machine=z8k-zilog
  360.         os=-sim
  361.         ;;
  362.     sun3)
  363.         basic_machine=m68k-sun
  364.         ;;
  365.     sun4)
  366.         basic_machine=sparc-sun
  367.         ;;
  368.     msdos)                        # CYGNUS LOCAL
  369.         basic_machine=i386-unknown    
  370.         os=-msdos
  371.         ;;
  372.     pbd)
  373.         basic_machine=sparc-tti
  374.         ;;
  375.     pbb)
  376.         basic_machine=m68k-tti
  377.         ;;
  378.     sun386 | sun386i | roadrunner)
  379.         basic_machine=i386-sun
  380.         ;;
  381.     ps2)
  382.         basic_machine=i386-ibm
  383.         ;;
  384.     fx2800)
  385.         basic_machine=i860-alliant
  386.         ;;
  387.     next)
  388.         basic_machine=m68k-next
  389.         os=-bsd
  390.         ;;
  391.     amiga)
  392.         basic_machine=m68k-cbm
  393.         ;;
  394.     amigados)
  395.         basic_machine=m68k-cbm
  396.         os=-amigados
  397.         ;;
  398.     amigaunix | amix)
  399.         basic_machine=m68k-cbm
  400.         os=-sysv4
  401.         ;;
  402.     hp9k3[2-9][0-9])
  403.         basic_machine=m68k-hp
  404.         ;;
  405.     hp9k31[0-9] | hp9k2[0-9][0-9])
  406.         basic_machine=m68000-hp
  407.         ;;
  408.     hp9k7[0-9][0-9] | hp7[0-9][0-9] | hp9k8[0-9]7 | hp8[0-9]7)
  409.         basic_machine=hppa1.1-hp
  410.         ;;
  411.     hp9k8[0-9][0-9] | hp8[0-9][0-9])
  412.         basic_machine=hppa1.0-hp
  413.         ;;
  414.     h3050r* | hppahitachi)
  415.         basic_machine=hppa1.1-hitachi
  416.         ;;
  417.     isi68 | isi)
  418.         basic_machine=m68k-isi
  419.         os=-sysv
  420.         ;;
  421.     apollo68)
  422.         basic_machine=m68k-apollo
  423.         os=-sysv
  424.         ;;
  425.     apollo68bsd)                    # CYGNUS LOCAL
  426.         basic_machine=m68k-apollo
  427.         os=-bsd
  428.         ;;
  429.     altos | altos3068)
  430.         basic_machine=m68k-altos
  431.         ;;
  432.     miniframe)
  433.         basic_machine=m68010-convergent
  434.         ;;
  435.     tower | tower-32)
  436.         basic_machine=m68k-ncr
  437.         ;;
  438.     news-3600 | risc-news)
  439.         basic_machine=mips-sony
  440.         os=-newsos
  441.         ;;
  442.     st2000)                        # CYGNUS LOCAL
  443.         basic_machine=m68k-tandem
  444.         ;;
  445.         m6*bug)                                           # CYGNUS LOCAL
  446.                 basic_machine=m68k-bug
  447.         os=-coff
  448.                 ;;
  449.         rom68k)                                         # CYGNUS LOCAL
  450.                 basic_machine=m68k-rom68k
  451.         os=-coff
  452.                 ;;
  453.         monitor)                                         # CYGNUS LOCAL
  454.                 basic_machine=m68k-rom68k
  455.         os=-coff
  456.                 ;;
  457.     decstation | decstation-3100 | pmax | pmin | dec3100 | decstatn)
  458.         basic_machine=mips-dec
  459.         ;;
  460.     magnum | m3230)
  461.         basic_machine=mips-mips
  462.         os=-sysv
  463.         ;;
  464.     gmicro)
  465.         basic_machine=tron-gmicro
  466.         os=-sysv
  467.         ;;
  468.     rtpc | rtpc-*)
  469.         basic_machine=romp-ibm
  470.         ;;
  471.     am29k)
  472.         basic_machine=a29k-none
  473.         os=-bsd
  474.         ;;
  475.     amdahl)
  476.         basic_machine=580-amdahl
  477.         os=-sysv
  478.         ;;
  479.     stratus)                    # CYGNUS LOCAL
  480.         basic_machine=i860-stratus
  481.         os=-sysv4
  482.         ;;
  483.     cray | ymp)
  484.         basic_machine=ymp-cray
  485.         os=-unicos
  486.         ;;
  487.     cray2)
  488.         basic_machine=cray2-cray
  489.         os=-unicos
  490.         ;;
  491.     xmp)
  492.         basic_machine=xmp-cray
  493.         os=-unicos
  494.         ;;
  495.     delta88)
  496.         basic_machine=m88k-motorola
  497.         os=-sysv3
  498.         ;;
  499.     dpx2* | dpx2*-bull)
  500.         basic_machine=m68k-bull
  501.         os=-sysv3
  502.         ;;
  503.     ebmon29k)
  504.         basic_machine=a29k-amd
  505.         os=-ebmon
  506.         ;;
  507.     h8300hms)                    # CYGNUS LOCAL
  508.         basic_machine=h8300-hitachi
  509.         os=-hms
  510.         ;;
  511.     sh*)                        # CYGNUS LOCAL
  512.         basic_machine=sh-hitachi
  513.         os=-hms
  514.         ;;
  515.  
  516.     h8500hms)                    # CYGNUS LOCAL
  517.         basic_machine=h8500-hitachi
  518.         os=-hms
  519.         ;;
  520.     h8300xray)                    # CYGNUS LOCAL
  521.         basic_machine=h8300-hitachi
  522.         os=-xray
  523.         ;;
  524.     h8300hds)
  525.         basic_machine=h8300-hitachi
  526.         os=-hds
  527.         ;;
  528.     udi29k)                        # CYGNUS LOCAL
  529.         basic_machine=a29k-amd
  530.         os=-udi
  531.         ;;
  532.     a29khif)                    # CYGNUS LOCAL
  533.         basic_machine=a29k-amd
  534.         os=-udi
  535.         ;;
  536.     sa29200)                    # CYGNUS LOCAL
  537.         basic_machine=a29k-amd
  538.         os=-udi
  539.         ;;
  540.     harris)
  541.         basic_machine=m88k-harris
  542.         os=-sysv3
  543.         ;;
  544.     hp300bsd)
  545.         basic_machine=m68k-hp
  546.         os=-bsd
  547.         ;;
  548.     hp300hpux)
  549.         basic_machine=m68k-hp
  550.         os=-hpux
  551.         ;;
  552.     hppaosf)
  553.         basic_machine=hppa1.1-hp
  554.         os=-osf
  555.         ;;
  556.     ncr3000)
  557.         basic_machine=i486-ncr
  558.         os=-sysv4
  559.         ;;
  560.     necv70)                        # CYGNUS LOCAL
  561.         basic_machine=v70-nec
  562.         os=-sysv
  563.         ;;
  564.     news1000)
  565.         basic_machine=m68030-sony
  566.         os=-newsos
  567.         ;;
  568.     nindy960)
  569.         basic_machine=i960-intel
  570.         os=-nindy
  571.         ;;
  572.     pn)
  573.         basic_machine=pn-gould
  574.         ;;
  575.     np1)
  576.         basic_machine=np1-gould
  577.         ;;
  578.     ultra3)
  579.         basic_machine=a29k-nyu
  580.         os=-sym1
  581.         ;;
  582.     vxworks960)
  583.         basic_machine=i960-wrs
  584.         os=-vxworks
  585.         ;;
  586.     vxworks68)
  587.         basic_machine=m68k-wrs
  588.         os=-vxworks
  589.         ;;
  590.     es1800 | OSE68k | ose68k | ose | OSE)        # CYGNUS LOCAL
  591.         basic_machine=m68k-ericsson
  592.         os=-ose
  593.         ;;
  594.     OSE68000 | ose68000)                # CYGNUS LOCAL
  595.         basic_machine=m68000-ericsson
  596.         os=-ose
  597.         ;;
  598.     os68k)                        # CYGNUS LOCAL
  599.         basic_machine=m68k-none
  600.         os=-os68k
  601.         ;;
  602.     sparclite-wrs)                    # CYGNUS LOCAL
  603.         basic_machine=sparclite-wrs
  604.         os=-vxworks
  605.         ;;
  606.     sparcfrw)                    # CYGNUS LOCAL
  607.         basic_machine=sparcfrw-sun
  608.         os=-sunos4
  609.         ;;
  610.     sparcfrwcompat)                    # CYGNUS LOCAL
  611.         basic_machine=sparcfrwcompat-sun
  612.         os=-sunos4
  613.         ;;
  614.     sparclitefrw)                    # CYGNUS LOCAL
  615.         basic_machine=sparclitefrw-fujitsu
  616.         os=-none
  617.         ;;
  618.     sparclitefrwcompat)                # CYGNUS LOCAL
  619.         basic_machine=sparclitefrwcompat-fujitsu
  620.         os=-none
  621.         ;;
  622.     adobe68k)                    # CYGNUS LOCAL
  623.         basic_machine=m68010-adobe
  624.         os=-scout
  625.         ;;
  626.  
  627.         xps | xps100)
  628.         basic_machine=xps100-honeywell
  629.         ;;
  630.     none)
  631.         basic_machine=none-none
  632.         os=-none
  633.         ;;
  634.  
  635. # Here we handle the default manufacturer of certain CPU types.  It is in
  636. # some cases the only manufacturer, in others, it is the most popular.
  637.     mips)
  638.         basic_machine=mips-mips
  639.         ;;
  640.     romp)
  641.         basic_machine=romp-ibm
  642.         ;;
  643.     rs6000)
  644.         basic_machine=rs6000-ibm
  645.         ;;
  646.     vax)
  647.         basic_machine=vax-dec
  648.         ;;
  649.     we32k)
  650.         basic_machine=we32k-att
  651.         ;;
  652.     sparc)
  653.         basic_machine=sparc-sun
  654.         ;;
  655.         cydra)
  656.         basic_machine=cydra-cydrome
  657.         ;;
  658.     orion)
  659.         basic_machine=orion-highlevel
  660.         ;;
  661.     orion105)
  662.         basic_machine=clipper-highlevel
  663.         ;;
  664.     *)
  665.         echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
  666.         exit 1
  667.         ;;
  668. esac
  669.  
  670. # Here we canonicalize certain aliases for manufacturers.
  671. case $basic_machine in
  672.     *-digital*)
  673.         basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
  674.         ;;
  675.     *-commodore*)
  676.         basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
  677.         ;;
  678.     *)
  679.         ;;
  680. esac
  681.  
  682. # Decode manufacturer-specific aliases for certain operating systems.
  683.  
  684. if [ x"$os" != x"" ]
  685. then
  686. case $os in
  687.     # -solaris* is a basic system type, with this one exception.
  688.     -solaris1 | -solaris1.*)
  689.         os=`echo $os | sed -e 's|solaris1|sunos4|'`
  690.         ;;
  691.     -solaris)
  692.         os=-solaris2
  693.         ;;
  694.     # First accept the basic system types.
  695.     # The portable systems comes first.
  696.     # Each alternative must end in a *, to match a version number.
  697.     # -sysv* is not here because it comes later, after sysvr4.
  698.     -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
  699.           | -vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]* | -hpux* \
  700.           | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \
  701.           | -amigados* | -msdos* | -newsos* | -unicos* | -aos* \
  702.           | -nindy* | -vxworks* | -ebmon* | -hms* | -mvs* | -clix* \
  703.           | -riscos* | -linux* | -uniplus* | -iris* | -rtu* | -xenix* \
  704.           | -hiux* | -386bsd* | -netbsd* | -riscix* | -lynxos* \
  705.           | -go32 | -vsta | -sim | -es1800* | -udi | -hms* | -xray | -hds* \
  706.           | -os68k* | -none* | -v88r* | -aout* | -coff | -elf* | -bosx* \
  707.           | -abug | -ecoff* | -netware* | -os9* )
  708.                 # The last three lines above are CYGNUS LOCAL
  709.     ;;
  710.     -sunos5*)
  711.         os=`echo $os | sed -e 's|sunos5|solaris2|'`
  712.         ;;
  713.     -sunos6*)
  714.         os=`echo $os | sed -e 's|sunos6|solaris3|'`
  715.         ;;
  716.     -osfrose*)
  717.         os=-osfrose
  718.         ;;
  719.     -osf*)
  720.         os=-osf
  721.         ;;
  722.     -utek*)
  723.         os=-bsd
  724.         ;;
  725.     -dynix*)
  726.         os=-bsd
  727.         ;;
  728.     -acis*)
  729.         os=-aos
  730.         ;;
  731.     -386bsd)                    # CYGNUS LOCAL
  732.         os=-bsd
  733.         ;;
  734.     -ctix* | -uts*)
  735.         os=-sysv
  736.         ;;
  737.     -triton*)
  738.         os=-sysv3
  739.         ;;
  740.     -oss*)
  741.         os=-sysv3
  742.         ;;
  743.     -svr4)
  744.         os=-sysv4
  745.         ;;
  746.     -unixware)
  747.         os=-sysv4
  748.         ;;
  749.     -svr3)
  750.         os=-sysv3
  751.         ;;
  752.     -sysvr4)
  753.         os=-sysv4
  754.         ;;
  755.     # This must come after -sysvr4.
  756.     -sysv*)
  757.         ;;
  758.     -ose*)                        # CYGNUS LOCAL
  759.         os=-ose
  760.         ;;
  761.     -es1800*)                    # CYGNUS LOCAL
  762.         os=-ose
  763.         ;;
  764.     -xenix)
  765.         os=-xenix
  766.         ;;
  767.     -none)
  768.         ;;
  769.     *)
  770.         # Get rid of the `-' at the beginning of $os.
  771.         os=`echo $1 | sed 's/[^-]*-//'`
  772.         echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
  773.         exit 1
  774.         ;;
  775. esac
  776. else
  777.  
  778. # Here we handle the default operating systems that come with various machines.
  779. # The value should be what the vendor currently ships out the door with their
  780. # machine or put another way, the most popular os provided with the machine.
  781.  
  782. # Note that if you're going to try to match "-MANUFACTURER" here (say,
  783. # "-sun"), then you have to tell the case statement up towards the top
  784. # that MANUFACTURER isn't an operating system.  Otherwise, code above
  785. # will signal an error saying that MANUFACTURER isn't an operating
  786. # system, and we'll never get to this point.
  787.  
  788. case $basic_machine in
  789.     *-acorn)
  790.         os=-riscix1.2
  791.         ;;
  792.     *-dec | vax-*)
  793.         os=-ultrix4.2
  794.         ;;
  795.     i386-sun)
  796.         os=-sunos4.0.2
  797.         ;;
  798.     m68000-sun)
  799.         os=-sunos3
  800.         # This also exists in the configure program, but was not the
  801.         # default.
  802.         # os=-sunos4
  803.         ;;
  804.     m68*-cisco)
  805.         os=-aout
  806.         ;;
  807.     mips*-cisco)
  808.         os=-elf
  809.         ;;
  810.     *-tti)    # must be before sparc entry or we get the wrong os.
  811.         os=-sysv3
  812.         ;;
  813.     sparc-* | *-sun)
  814.         os=-sunos4.1.1
  815.         ;;
  816.     *-ibm)
  817.         os=-aix
  818.         ;;
  819.     *-hp)
  820.         os=-hpux
  821.         ;;
  822.     *-hitachi)
  823.         os=-hiux
  824.         ;;
  825.     i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent)
  826.         os=-sysv
  827.         ;;
  828.     *-cbm)
  829.         os=-amigados
  830.         ;;
  831.     *-dg)
  832.         os=-dgux
  833.         ;;
  834.     *-dolphin)
  835.         os=-sysv3
  836.         ;;
  837.     m88k-omron*)
  838.         os=-luna
  839.         ;;
  840.     *-sequent)
  841.         os=-bsd
  842.         ;;
  843.     *-crds)
  844.         os=-unos
  845.         ;;
  846.     *-ns)
  847.         os=-genix
  848.         ;;
  849.     i370-*)
  850.         os=-mvs
  851.         ;;
  852.     *-next)
  853.         os=-bsd
  854.         ;;
  855.     i[34]86-*)
  856.         os=-sco3.2v2
  857.         ;;
  858.         *-gould)
  859.         os=-sysv
  860.         ;;
  861.         *-highlevel)
  862.         os=-bsd
  863.         ;;
  864.     *-encore)
  865.         os=-bsd
  866.         ;;
  867.         *-sgi)
  868.         os=-irix
  869.         ;;
  870.     *-masscomp)
  871.         os=-rtu
  872.         ;;
  873.     *-rom68k)                    # CYGNUS LOCAL
  874.         os=-coff
  875.         ;;
  876.     *-*bug)                        # CYGNUS LOCAL
  877.         os=-coff
  878.         ;;
  879.     *)
  880.         os=-none
  881.         ;;
  882. esac
  883. fi
  884.  
  885. # Here we handle the case where we know the os, and the CPU type, but not the
  886. # manufacturer.  We pick the logical manufacturer.
  887. vendor=unknown
  888. case $basic_machine in
  889.     *-unknown)
  890.         case $os in
  891.             -riscix*)
  892.                 vendor=acorn
  893.                 ;;
  894.             -sunos*)
  895.                 vendor=sun
  896.                 ;;
  897.             -bosx*)            # CYGNUS LOCAL
  898.                 vendor=bull
  899.                 ;;
  900.             -lynxos*)
  901.                 vendor=lynx
  902.                 ;;
  903.             -aix*)
  904.                 vendor=ibm
  905.                 ;;
  906.             -hpux*)
  907.                 vendor=hp
  908.                 ;;
  909.             -hiux*)
  910.                 vendor=hitachi
  911.                 ;;
  912.             -unos*)
  913.                 vendor=crds
  914.                 ;;
  915.             -dgux*)
  916.                 vendor=dg
  917.                 ;;
  918.             -luna*)
  919.                 vendor=omron
  920.                 ;;
  921.             -genix*)
  922.                 vendor=ns
  923.                 ;;
  924.             -mvs*)
  925.                 vendor=ibm
  926.                 ;;
  927.             -vxworks*)
  928.                 vendor=wrs        # CYGNUS LOCAL
  929.                 ;;
  930.             -hms*)                # CYGNUS LOCAL
  931.                 vendor=hitachi
  932.                 ;;
  933.         esac
  934.         basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
  935.         ;;
  936. esac
  937.  
  938. echo $basic_machine$os
  939.